|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
XF(mir99712) |
var so=new SharedObject();
so=SharedObject.getLocal("게임이름");
so.data.현재프레임=_root._currentframe;
그리고 로드할때
_root.gotoAndStop(so.data.현재프레임); 2016-11-12 21:03:53
|
|
|
매니아된 레드캡(solmoroo1) |
var so=new SharedObject();
so=SharedObject.getLocal("게임이름");
so.data.현재프레임=_root._currentframe;
이 액션 은 어디에 넣나요? 2016-11-14 14:53:58
|
|
|
XF(mir99712) |
//첫프레임에
var so=new SharedObject();//저장용 변수 선언
so=SharedObject.getLocal("게임이름");//저장용
변수 초기화
//저장버튼
so.data.현재프레임=_root._currentframe;//현재
프레임위치를 저장 2016-11-14 15:51:34
|
|
|
XF(mir99712) |
그리고 _root.gotoAndStop(so.data.현재프레임);
는 로드 버튼 액션의 맨 마지막에 적어야 됩니다 2016-11-14 15:52:48
|
|
|
|
|